home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CDOS10.ARJ / MISCFCTS.H < prev    next >
Text File  |  1992-07-07  |  733b  |  22 lines

  1. #if !defined (MISCFCTS)           /* Prevents multiple declarations errors */
  2. #define MISCFCTS
  3.  
  4.  
  5. /*----- Macros ------------------------------------------------------------*/
  6. /*----- Type Definitions --------------------------------------------------*/
  7. /*----- Prototype ---------------------------------------------------------*/
  8.  
  9. void far ansicolor       /* Converts color codes to their ANSI equivalents */
  10.  
  11. ( int fore,                       /* Fore and background colors to convert */
  12.   int back,
  13.   int huge *ansbold,                /* ANSI arguments for the ESC sequence */
  14.   int huge *ansfore,
  15.   int huge *ansback
  16. ) ;
  17.  
  18.  
  19. /*----- End Header File ---------------------------------------------------*/
  20.  
  21. #endif
  22.